-
-
Notifications
You must be signed in to change notification settings - Fork 6.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Makefile #80
Makefile #80
Conversation
So I also see a lot of projects us a bat file in addition to a makefile to do installations. What are your thoughts about creating a batch file to run and install? |
Sounds good to me although I am not familiar with those, we can add that one in another PR. I believe |
WDYT? If you would like to have something like this let me know and I will amend the README for it I would suggest having two way of installing, classic |
Thanks @patillacode! I looked yesterday and wanted to ask, do you want to put black commands and pytest commands in here? Or do you have a simple command to run all the tools in pyproject.toml you prefer? |
Also my only concern with Makefiles... If we change how things are run, we have to keep Makefile in sync. (And it makes it "harder to find things" since there are so many files) |
Thanks @AntonOsika
|
@patillacode @AntonOsika I can document the makefile because it is very crucial step in setting up the codebase for development and a proper documentation is needed |
By using a
Makefile
we can abstract some of the things needed to run the app or install it and it is a great place for future commands (like testing)See a demo below: